为了账号安全,请及时绑定邮箱和手机立即绑定

块绕点旋转,在动画中用

标签:
Html/CSS
   body{
            overflow: hidden;
        }
        main{
            width: 800px;
            height: 600px;
            margin: 100px auto;
            background-color: lightgray;

            position: relative;
        }
        #dot{
            width: 30px;
            height: 30px;
            background-color: red;
            border-radius: 15px;

            /*放在main的中心*/
            position: absolute;
            top: calc(50% - 30px / 2);
            left: calc( 50% - 30px / 2);
        }

        #color{
            width: 100px;
            height: 100px;
            background-color: red;

            /*定宽居中*/
            margin: 100px auto;

            /*修改旋转中心为灰色块的中心;默认值是图形的中心点*/
            /*以颜色块的左上角为坐标原点,
            计算灰色块中心点的坐标值*/
            transform-origin: 50px 300px;
            /*动画*/

            /*动画的名称;多个动画名称以逗号分隔*/
            /*animation-name: rotate,changeColor;*/
            /*动画的时间*/
            animation-duration: 5s;

            /*保持动画状态*/
            animation-fill-mode: both;
            /*动画延迟*/
            animation-delay: 3s;

            /*动画的速率*/
            animation-timing-function: linear;
            /*动画的重复次数 infinite:无穷*/
            animation-iteration-count: infinite;
            /*动画的方向*/
            animation-direction: reverse;
        }

       /*改变颜色的动画*/
       @keyframes changeColor{
           from{
               background-color: red;
           }20%{
               background-color: yellow;
           }45%{
               background-color: blue;
           }60%{
               background-color: black;
           }77%{
               background-color: green;
           }100%{
               background-color: red;
           }
       }

       /*旋转的动画*/
      @keyframes rotate{
          from{
             transform: rotate(0deg);
          }to{
              transform: rotate(360deg);
          }
      }
    </style>
</head>
<body>
    <main>
        <section id="dot"></section>
        <section id="color"></section>
    </main>
</body>
点击查看更多内容
3人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消